home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / decprom / mem.c < prev    next >
C/C++ Source or Header  |  1990-02-16  |  1KB  |  71 lines

  1. /* 
  2.  * mem.c --
  3.  *
  4.  *    A simple (and small) memory allocator for the SCSI disk bootstrap
  5.  *    program.
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifdef notdef
  18. static char rcsid[] = "$Header: /sprite/src/boot/decprom/RCS/mem.c,v 1.1 90/02/16 16:14:15 shirriff Exp $ SPRITE (Berkeley)";
  19. #endif /* not lint */
  20.  
  21. #include "sprite.h"
  22.     extern int end;
  23.  
  24. static char *memEnd = (char *) &end;
  25.  
  26. /*
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * malloc --
  30.  *
  31.  *     Allocate a block of memory of the given size starting at the
  32.  *     current end of kernel memory.
  33.  *
  34.  * Results:
  35.  *    A pointer to the allocated memory
  36.  *
  37.  * Side effects:
  38.  *    None.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43.  
  44.  
  45. char *
  46. malloc(numBytes)
  47. {
  48.     char    *addr;
  49.  
  50.     addr =  memEnd;
  51.  
  52.     memEnd += (numBytes + 3) & ~3;
  53.     bzero(addr, numBytes);
  54.     return(addr);
  55. }
  56.  
  57. void
  58. free(address)
  59.     char *address;
  60. {
  61.     return;
  62. }
  63. void
  64. _free(address)
  65.     char *address;
  66. {
  67.     return;
  68. }
  69.  
  70.  
  71.